projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bef95e
)
(Funencodable_char_position): Lisp_Object/int mixup.
author
Gerd Moellmann
<gerd@gnu.org>
Tue, 13 Aug 2002 19:12:46 +0000
(19:12 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Tue, 13 Aug 2002 19:12:46 +0000
(19:12 +0000)
src/ChangeLog
patch
|
blob
|
history
src/coding.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index e74bff0bd624a24201575c90727a6631e8e4fb25..acae55cd94784b5a70ec0ec7386f98d9a2c9f7e1 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
+
+ * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
+
2002-08-12 Richard M. Stallman <rms@gnu.org>
* syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
diff --git
a/src/coding.c
b/src/coding.c
index 7f9f5171b9e5f0fd950e1fa025e634231d4d3554..fd0d36e4241afe5aa33eda1133603d4407516890 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-6619,7
+6619,7
@@
to the string. */)
Lisp_Object args[2];
args[0] = unencodable_char_position (safe_chars, from, p, GPT_ADDR, n);
- n -=
Flength (args[0]
);
+ n -=
XINT (Flength (args[0])
);
if (n <= 0)
positions = args[0];
else